Learn R Programming

sbioPN (version 1.1.0)

c) Model Definition: Helper functions for model definition

Description

These functions are used to define models. They become more useful as the model has more places and transitions, as pre and post are sparse matrices so their direct manipulation may be error prone. See example of use below.

Usage

init(place) atr(trans.name=NULL) load.cfn(place, code) unload.cfns()

Arguments

place
Places
trans.name
Name of the transition (reaction)
code
C code that returns the propensity

Value

The functions do not return values.

Details

Function init accesses the frame of the calling function, creating variables with the names "model", "L", "R", and "h", that are considered reserved to bioPN. It also creates a variable for each element in the place vector submitted to the function init. Function atr creates a variable for each transition name sent. load.cfn and unload.cfns are used on cases where the transitions are of a special form, and a C function wants to be used to compute it for increase performance.

See Also

sGillespieOptimDirect, sHaseltineRawlings

Examples

Run this code
## bioPN has been tested only on 64 bits machines.
## It may fail in 32 bits architecture.

####### Constants definition (convenient but not required)
H <- 10
K <- 6
r <- 0.25
c <- 3
b <- 2
#######

place <- c( "Gi", "Ga", "mRNA", "Protein")

## WARNING: function init() accesses the frame
##          of the calling function, creating variables
##          with the names "model", "L", "R", and "h",
##          that are considered reserved to bioPN.
##          It also creates a variable for each element
##          in the place vector submitted to the function
##          init(). Function atr() creates a variable
##          for each transition name sent.

####### Initialization
init(place)

####### Start of model definition

## Gi -> Ga
h <- c
L[Gi] <- 1
R[Ga] <- 1
atr("gene_activation") ## Add this reaction

## Ga -> Gi
h <- b
L[Ga] <- 1
R[Gi] <- 1
atr("gene_inactivation")

## Ga -> Ga + mRNA
h <- H
L[Ga] <- 1
R[Ga] <- 1; R[mRNA] <- 1
atr("transcription")
  
## mRNA -> mRNA + Protein
h <- K
L[mRNA] <- 1
R[mRNA] <- 1; R[Protein] <- 1
atr("mRNA_degradation")

## mRNA -> 0
h <- 1
L[mRNA] <- 1
atr("translation")

## Protein -> 0
h <- r
L[Protein] <- 1
atr("protein_degradation")

####### End of model definition

Run the code above in your browser using DataLab